home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Minami 58
/
MINAMI58.ISO
/
Varios
/
Juegos Flash
/
Gold Yard.exe
/
scripts
/
DefineSprite_390
/
frame_20
/
DoAction.as
Wrap
Text File
|
2003-04-29
|
617b
|
33 lines
if(path == cells)
{
path = 1;
first = 1;
if(direction == "forth")
{
direction = "back";
}
else if(direction == "back")
{
direction = "forth";
}
}
if(direction == "forth")
{
skullfb.gotoAndPlay("forth");
if(first != 1)
{
setProperty("skullfb", _X, getProperty(skullfb, _X) + _root.library.planecellx * 2);
}
}
else if(direction == "back")
{
skullfb.gotoAndPlay("back");
if(first != 1)
{
setProperty("skullfb", _X, getProperty(skullfb, _X) - _root.library.planecellx * 2);
}
}
first = 0;
path += 1;
gotoAndPlay(2);